home *** CD-ROM | disk | FTP | other *** search
/ Floppyshop 2 / Floppyshop - 2.zip / Floppyshop - 2.iso / diskmags / 0022-3.564 / dmg-0080 / 818.txt < prev    next >
Text File  |  1997-04-16  |  10KB  |  289 lines

  1. =========================================================================
  2.  
  3. INFO-ATARI16 Digest         Sat, 16 Dec 89       Volume 89 : Issue  818
  4.  
  5. Today's Topics:
  6.                Chaos Strikes Back... Dungeon Master II
  7.                      C source financial routines
  8.                     I/O redirection to the printer
  9.                                Prog-A16
  10.                      RCS for the ST (no, not yet)
  11.                      Source code control (2 msgs)
  12.                           Two-Page monitors
  13.           Wanted: Source for Atari 13 pin monitor connector
  14. ----------------------------------------------------------------------
  15.  
  16. Date: 16 Dec 89 21:47:03 GMT
  17. From: clubok@husc4.harvard.edu  (Ken "The Snake" Clubok)
  18. Subject: Chaos Strikes Back... Dungeon Master II
  19. Message-ID: <3432@husc6.harvard.edu>
  20.  
  21. It sure is... And I have it!  Of course, I have had it on back
  22. order for several months...
  23. So I can hear you all asking "What's it like?"  Well...I don't know.
  24. You see, I ordered it last summer before returning to college, and so
  25. it was shipped to my home address.  (Arrived yesterday, in fact.)  I'll
  26. get my first chance to try it out when I go home for break in a few days,
  27. and when I return, I'll let you all know how I like it.  (Unless of course,
  28. I find my mailbox overflowing with messages saying, "Don't bother, Ken.
  29. We're not interested.") ;~?
  30. Ken Clubok
  31. clubok@husc4.bitnet
  32. clubok@husc4.harvard.edu
  33.  
  34. ------------------------------
  35.  
  36. Date: 16 Dec 89 15:34:58 GMT
  37. From:
  38.  zaphod.mps.ohio-state.edu!uakari.primate.wisc.edu!caesar.cs.montana.edu!ogicse!
  39.  blake!ramsiri@tut.cis.ohio-state.edu  (Enartloc Nhoj)
  40. Subject: C source financial routines
  41. Message-ID: <4948@blake.acs.washington.edu>
  42.  
  43. I am posting this on behalf of a friend.
  44.  
  45. He is looking for a C library of financial package routines
  46. such as Internal Rate of Return etc.
  47.  
  48. Anyone point me to a PD source?
  49.  
  50. Thanks in advance.
  51.  
  52. Pleas e-mail  ramsiri@blake.acs.washington.edu
  53.  
  54. -kevin
  55.  
  56. ------------------------------
  57.  
  58. Date: Fri, 15 Dec 89 19:19
  59. From: "Thomas Koenig"
  60.  <UI0T%DKAUNI2.BITNET@CUNYVM.CUNY.EDU>
  61. Subject: I/O redirection to the printer
  62. Message-ID: <"89-12-15-19:19:25.76*UI0T"@DKAUNI2.BITNET>
  63.  
  64. I am having a strange problem with I/O redirection.  To redirect
  65. standard output to the printer, I wrote the following test program:
  66.  
  67. #include <stdio.h>
  68. #include <tos.h>    /* Turbo - C 's header for TOS stuff */
  69.  
  70. main()
  71. ?
  72.     int    oldstd;
  73.     int    printhandle;
  74.  
  75.     oldstd      = Fdup (1);
  76.     printhandle = Fdup (3);
  77.     printf("oldstd = %d, printhandle = %d\n",oldstd,printhandle);
  78.  
  79.     Fclose (1);
  80.     Fforce (1, printhandle);
  81.     printf("Hello, world!\n");
  82. /*    Cconws("Hello, world!\n");    */
  83.  
  84.     Fclose (1);
  85.     Fforce (1, oldstd);
  86.     Fclose (oldstd);
  87.     Fclose (printhandle);
  88. ?
  89.  
  90. This program worked as it should; it printed out
  91. Hello, world!
  92. on the printer.  However, when I commented out the printf statement
  93. and used Cconws instead, it seemed to go into an endless loop; I
  94. could still move the mouse around, but that was it for at least 10
  95. minutes (I did not wait any longer).  Oh, by the way, the printer WAS
  96. online and ready.  Without the I/O redirection, Cconws worked fine;
  97. it printed out "Hello, world" on the screen.  No accessories or
  98. memory resident programs were active at the time.
  99.  
  100. The problem with Cconws occured both with Turbo C V1.1 and with
  101. equivalent code (calls to the GEMDOS library) in SPC Modula V2.0.
  102.  
  103. I am using a Mega ST2 with TOS 1.2 (1.4 has not made it here yet)  and
  104. a Megafile 60 hard drive.
  105.  
  106. Is there something wrong with my code (but WHY did printf work,
  107. then?), can anybody reproduce this strange behaviour, is this a bug
  108. in TOS 1.2 which has/has not been fixed in TOS 1.4, ... , in short:
  109.  WHAT IS GOING ON?
  110.  
  111. Any help appreciated.
  112.  
  113. Thomas  Koenig                   UI0T@DKAUNI2.BITNET
  114.                                  UI0T%DKAUNI2.BITNET@CUNYVM.CUNY.EDU
  115. (soon: new address, old machine) UI0T@IBM3090.RZ.UNI-KARLSRUHE.DBP.DE
  116. 'Ich dachte nicht, ich untersuchte.'            Wilhelm Conrad Roentgen
  117.  
  118. ------------------------------
  119.  
  120. Date: Fri, 15 Dec 89 15:34
  121. From: "Thomas Koenig"
  122.  <UI0T%DKAUNI2.BITNET@CUNYVM.CUNY.EDU>
  123. Subject: Prog-A16
  124. Message-ID: <"89-12-15-15:34:17.29*UI0T"@DKAUNI2.BITNET>
  125.  
  126. Since my last posting about this, I received a few mails from people
  127. who asked me where Prog-A16 is situated now and how to access the
  128. archives, which I had not mentioned. (A bit foolish of me, really...)
  129. Well, here it is:
  130.  
  131. Prog-A16 has been moved to LISTSERV@UOGUELPH.BITNET. To get a quick
  132. overview about what is there, send a mail there with the lines
  133. HELP
  134. INDEX PROG-A16
  135. if you're on BITNET/EARN/NETNORTH, or with the lines
  136. HELP
  137. INDEX PROG-A16 F=PUNCH
  138. if you're on Internet or are otherwise unable to receive NETDATA-files.
  139. I hope this helps.
  140.  
  141. Thomas  Koenig                   UI0T@DKAUNI2.BITNET
  142.                                  UI0T%DKAUNI2.BITNET@CUNYVM.CUNY.EDU
  143. (soon: new address, old machine) UI0T@IBM3090.RZ.UNI-KARLSRUHE.DBP.DE
  144. 'Ich dachte nicht, ich untersuchte.'            Wilhelm Conrad Roentgen
  145.  
  146. ------------------------------
  147.  
  148. Date: 16 Dec 89 16:59:52 GMT
  149. From:
  150.  zaphod.mps.ohio-state.edu!wuarchive!kuhub.cc.ukans.edu!2fhdbeak@tut.cis.ohio-st
  151.  ate.edu
  152. Subject: RCS for the ST (no, not yet)
  153. Message-ID: <19925@kuhub.cc.ukans.edu>
  154.  
  155. In article <15412@laurel.athertn.Atherton.COM>, alex@athertn.Atherton.COM (Alex
  156.  Leavens) writes:
  157. > Well, I've got my hot little hands on the source code for the original
  158. > UNIX RCS system, and plan (in my copious spare time :-) to start porting
  159. > it to the ST.  Anyone have any suggestions/comments/etc. to make about
  160. > conventions I should follow, or other, similar things?
  161. >
  162. > For example, I think that things are stored in RCS in the form
  163. > <filename>.c,v
  164. > which is fine for Unix, but...well, you know how the ST is.  I'd planned
  165. > to change this to
  166. > <filename>.c_v
  167. >
  168. > Any objections?
  169. >
  170. > Cheers,
  171. >
  172. > --
  173. > --alex (TOO) ['My mind is my own'--#6]
  174.  
  175. A friend of mine (an Amiga developer) has RCS for the Amiga, and has given me
  176. the source code for it.
  177.  
  178. I haven't had time to port it yet, but the code doesn't look like it will have
  179. to be changed at all (it was already altered to the Amiga Lattice C format,
  180. which looks just like GNU C, the compiler I'll use).
  181.  
  182. Keep working on it, and keep in touch with me via E-mail so we can compare
  183. progress.
  184.  
  185. --Jim Sisul
  186. The University of Kansas
  187. (I don't think I've expressed any opinions here, so why disclaim them?)
  188.  
  189. ------------------------------
  190.  
  191. Date: 16 Dec 89 19:57:51 GMT
  192. From: zaphod.mps.ohio-state.edu!math.lsa.umich.edu!hyc@tut.cis.ohio-state.edu
  193.  (Howard Chu)
  194. Subject: Source code control
  195. Message-ID: <10333@stag.math.lsa.umich.edu>
  196.  
  197. In article <750039@hpsad.HP.COM> bobw@hpsad.HP.COM (Bob Waltenspiel) writes:
  198. >I've been wondering this myself.  Given a choice, I'd choose RCS though.
  199. >Does anyone know if the source code for RCS is available from somewhere,
  200. >(MIT?)?
  201. >
  202. >-Bob
  203.  
  204. I'm pretty sure the source is freely redistrbutable. I like RCS as well.
  205. haven't had tiem to port it to TOS yet though. (But now that GNUdiff is
  206. available, it should be fairly easy.)
  207. --
  208.  -=- PrayerMail: Send 100Mbits to holyghost@father.son[127.0.0.1]
  209.  and You Too can have a Personal Electronic Relationship with God!
  210.  
  211. ------------------------------
  212.  
  213. Date: 16 Dec 89 17:35:31 GMT
  214. From: att!chinet!saj@ucbvax.Berkeley.EDU  (Stephen Jacobs)
  215. Subject: Source code control
  216. Message-ID: <1989Dec16.173531.15050@chinet.chi.il.us>
  217.  
  218. In article <1839@sbsvax.UUCP> roeder@sbsvax.UUCP (Edgar Roeder) writes:
  219. >
  220. >There has been a posting of RCS in the amiga source group some weeks ago. I
  221. >have not looked at the code, but maybe it could be ported to the st as well.
  222. >
  223. >       - Edgar
  224.  
  225. I looked at about a third of the stuff (unfortunately, there don't seem to
  226. be mail response or anonymous uucp archives for comp.sources.amiga: there's
  227. ftp at xanth, and there are [amiga format, of course] disks available from
  228. Fred Fish).  It looked like at the very least a lot of filename conversion
  229. would be needed.  The spawn mechanism on Amiga may also be more UNIX-like
  230. than on the ST.
  231.                                    Steve J.
  232.  
  233. ------------------------------
  234.  
  235. Date: 16 Dec 89 20:51:29 GMT
  236. From: ogicse!blake!ramsiri@ucsd.edu  (Enartloc Nhoj)
  237. Subject: Two-Page monitors
  238. Message-ID: <4953@blake.acs.washington.edu>
  239.  
  240. The Ehman Two-Page Monochrome Display System
  241. is a 19", 76 DPI, 70 herz refresh monitor that
  242. comes with card, cable, software and swivel base
  243. for a LIST price of $899.00.
  244.  
  245. The only problem is that is runs on a Mac.
  246. Wondering what it would take to get GCR
  247. working with it. ,
  248.  
  249. My second wonder is: "why does the Viking Moniterm LIST at $1900.00?"
  250.  
  251. My third wonder is: "What high res, 2-page multisync monitors
  252. work well with the ST? "
  253.  
  254. Other 19" monochromes that work with the ST?
  255.  
  256. -kevin
  257. ramsiri@blake.acs.washington.edu
  258.  
  259.  
  260.  
  261. ------------------------------
  262.  
  263. Date: 16 Dec 89 03:15 PST
  264. From: Ralf Werner <werner%vax1.informatik.fh-regensburg.dbp.de@RELAY.CS.NET>
  265. Subject: Wanted: Source for Atari 13 pin monitor connector
  266. Message-ID: <79:werner@vax1.informatik.fh-regensburg.dbp.de>
  267.  
  268. You could also check out your local ham radio store (if there's any); the 13
  269. pin "ATARI-style" jack can be found on e.g. the KENWOOD TS-440 shortwave trans-
  270. ceiver (the chance to get this connector there is rather low: I've got my
  271. connector for the TS-440 at the local computer store...).
  272.  
  273. What do we learn from this?
  274.  
  275. - don't connect your SM124 to a shortwave transceiver
  276. - there has to be a weird standard somewhere
  277. - ...and at least two manufacturers joined this standard.
  278.  
  279.                              Have fun,       Ralf
  280.  
  281. [ Ralf Werner - werner%vax1.informatik.fh-regensburg.dbp.de@relay.cs.net ]
  282. [  (DF1RW)      werner%vax1.informatik.fh-regensburg.dbp.de@unido (UUCP) ]
  283. [ (@DB0RGB)     "RISC - Really Incomparable to Standard Computers"       ]
  284.  
  285. ------------------------------
  286.  
  287. End of INFO-ATARI16 Digest V89 Issue #818
  288. *****************************************
  289.